home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / DIGEST_B / VIEWS / CDISPLAY.H1 < prev    next >
Text File  |  1991-09-10  |  450b  |  24 lines

  1. /****
  2.  * CDisplayText.h
  3.  *
  4.  *    A text edit pane for a tiny editor.
  5.  *
  6.  ****/
  7.  
  8.  
  9. #define _H_CDisplayText
  10.  
  11. #include <CEditText.h>
  12.  
  13. struct CDisplayText : CEditText {
  14.  
  15.                                 /** Contruction/Destruction **/
  16.     void    IDisplayText(CView *anEnclosure, CBureaucrat *aSupervisor,
  17.                 short vLoc, short heigth);
  18.  
  19.     void    DoKeyDown(char theChar, Byte keyCode, EventRecord *macEvent);
  20.  
  21.     void    ProviderChanged( CCollaborator *aProvider, long reason,
  22.                 void* info);
  23. };
  24.